home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Everything For A Hacker
/
19990506-[HACK].iso
/
HEXEDIT
/
UTILS
/
ZENDISK1.ARJ
/
LST8-1.ASM
< prev
next >
Wrap
Assembly Source File
|
1990-02-15
|
272b
|
19 lines
;
; *** Listing 8-1 ***
;
; Copies a byte via AH, with memory addressed with
; mod-reg-rm direct addressing.
;
jmp Skip
;
SourceValue db 1
DestValue db 0
;
Skip:
call ZTimerOn
rept 1000
mov ah,[SourceValue]
mov [DestValue],ah
endm
call ZTimerOff